{% extends 'base.html' %} {% block title %} Добавление новости :: {{ block.super }} {% endblock %} {% block sidebar %} {% include 'inc/_sidebar.html' %} {% endblock %} {% block content %}

Добавление новости

{% csrf_token %} {{ form.as_p }} {% comment %} {{ form.non_field.errors }}
{{ form.title }}
{{ form.title.errors }}
{{ form.content }}
{{ form.content.errors }}
{{ form.is_published }}
{{ form.is_published.errors }}
{{ form.category }}
{{ form.category.errors }}
{% endcomment %} {% comment %} {% for field in form %}
{{ field.label_tag }} {{ field }}
{{ field.errors }}
{% endfor %} {% endcomment %}
{% endblock %}